All Questions
Tagged with bitwise-operatorspostgres
1 question
0votes
1answer
265views
Is it possible to store and query combinations of boolean-like information in an integer?
With one boolean, it is simply 0 and 1, and it's straight-forward to query. With two booleans, it becomes necessary to specify what each number means, ex: 0 F-F 1 F-T 2 T-F 3 T-T Here it's easy to ...